Summaries generated: 2024 May 17 22:41 UTC
Load needed libraries.
# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
# I don't think we need these but saving here in case
# library(dplyr)
# library(tcltk)
# library(manipulate)
Set user-defined variables.
# name project
ProjID <- 'MHI UxS Glider Project'
# combine trip, recorder, pg version (all defined in YAML) to single run string
pgRunStr <- paste0(params$pgver, '_glider_banter_', params$mission)
# define subfolder paths based on selected analysis folder and trip strings
path_to_db <- file.path(params$path_pg, 'databases')
path_to_binaries <- file.path(params$path_pg, 'binaries', pgRunStr)
# assemble some file names
# pamguard database
dbFile <- file.path(path_to_db, paste0(pgRunStr, '.sqlite3'))
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, 'dets',
paste0(params$pgver, '_', params$mission, '_dets.rda'))
detsFiltFile <- file.path(params$path_dets, 'dets_filtered',
paste0(params$pgver, '_', params$mission, '_detsFilt.rda'))
# specify calibration file
# calFile <- params$calFile # pull from YAML
# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp
# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files")
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")
# set up datebase driver
sqlite <- dbDriver("SQLite")
#Set time zone to UTC
Sys.setenv(TZ = 'UTC')
# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3',
# '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a',
'#66a61e', '#e6ab02')
If already created, load an existing dets PAMpal
AcousticStudy object for event processing. We need to load both the
unfiltered dets and filtered detsFilt
AcousticStudies.
# load existing dets AcousticStudy (created with
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
load(detsFile)
cat('Loaded', detsFile, '\n')
} else {
cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded T:/glider_MHI_analysis/classification/dets/pam20207b_sg639_MHI_Apr2023_dets.rda
if (file.exists(detsFiltFile)){
load(detsFiltFile)
cat('Loaded', detsFiltFile, '\n')
} else {
cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded T:/glider_MHI_analysis/classification/dets_filtered/pam20207b_sg639_MHI_Apr2023_detsFilt.rda
# summarize how many events
nEvents <- length(names(events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(events(detsFilt)))
Loaded T:/glider_MHI_analysis/classification/dets/pam20207b_sg639_MHI_Apr2023_dets.rda and T:/glider_MHI_analysis/classification/dets_filtered/pam20207b_sg639_MHI_Apr2023_detsFilt.rda:
134 events before filtering and 134 events after filtering.
Load the reference spectra for plotting, if set with
refSpecList.
# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
# e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')
if (!is.null(refSpecList)){
refSpecs = list()
for (rs in refSpecList){
refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
}
}
Source some external functions
source(file.path(params$path_llamp, 'R', 'functions', 'loadMultiBinaries.R'))
source(file.path(params$path_llamp, 'R', 'functions', 'plotContours.R'))
source(file.path(params$path_llamp, 'R', 'functions', 'clickSummary.R'))
source(file.path(params$path_llamp, 'R', 'functions', 'whistleSummary.R'))
Loop through each detection event (n = 134) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.
Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.
for (iEvent in c(1:nEventsFilt)){
# iEvent = 6 # for testing
# ("pagebreak \n")
# extract this event UID string
eventList <- events(detsFilt)
eventUID <- names(eventList)[iEvent]
# set header for this event and print time
cat('\n\n#### Event ID: ', names(eventList)[iEvent], '\n')
cat('Time: ', format(eventList[[eventUID]]@ancillary$grouping$start,
'%Y-%m-%d %H:%M%Z'), ' to ',
format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'),
'\n')
###### summarize clicks ######
cl <- clickSummary(detsFilt, eventUID)
cat('\nEvent contains', nrow(getClickData(dets[[eventUID]])),
'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
'filtering.\n')
cat('\n')
###### summarize whistles ######
wl <- whistleSummary(detsFilt, eventUID)
cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
cat('\n')
###### click plots and table ######
cat('\n##### Click plots and table\n')
cat('\n SNR histogram includes all filtered clicks. Other plots contain only',
'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
'.\n')
cat('\n')
# if any clicks...
if (cl$nClicks > 0){
# histogram of all clicks and SNR >= 15 dB cut off
xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
hist(cl$snr, breaks = seq(from = floor(min(cl$snr)),
to = xMax, by = 2),
main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
abline(v = 15, lty = 2, lwd = 2, col = 'red4')
}
# if sufficient good clicks...
if (cl$nGoodClicks > 0) {
# histogram of click durations - good clicks only
subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
hist(cl$goodClicks$duration,
breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100,
by = 100), main = 'Click duration', sub = subStr,
xlab = expression(paste('duration [', mu, 's]')))
abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
cat('\n')
cat('\n')
# Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
# NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
# be noisy for single clicks
# reducing wl can give more accurate noise floor but 'smoother' spectrum
# increasing wl will give more exact spectrum but may exclude too many
# clicks based on SNR (noise measure will overlap with click output; noise
# is just measured as same wl from start of binary snippet and binaries
# binary snippets are v short)
# Trial and error - 256 works ok for LLHARP data = 1.28 ms
# NB: JLKM uses 500 for beaked whales with samp rate 288k
avgSpec <- calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256,
channel = 1, norm = TRUE, noise = TRUE,
sort = TRUE, snr = 15,
plot = c(TRUE, FALSE))
# concatenated spectrogram will get plotted within calculation
# avg spectrum plots separately (bc adding stuff)
if (!is.null(avgSpec)) {
# Peak freq as calculated by calculateAvgerageSpectra -for subtitle
peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0),
xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)',
main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
# add grid lines for frequency at 10 kHz intervals
for (iline in ((0:15)*10)) {lines(c(iline,iline), c(-60,10), col="gray")}
# add template spectra
if (length(refSpecs) > 0){
rsCols <- rsPalette[1:length(refSpecs)]
for (rs in 1:length(refSpecs)){
rsTmp <- refSpecList[rs]
rsNorm <- refSpecs[[rsTmp]]
rsMax <- max(rsNorm$dB)
rsNorm$dBNorm <- rsNorm$dB - rsMax
lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
}
}
# plot noise
lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
# plot avg spectrum
lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
# also plot median spectrum
medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
median(10^(y/20), na.rm = TRUE)}))
medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
# add legend
legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
lty = c(1, 1, 2, 1, 3), lwd = c(1, 1, 2, 3, 2),
col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
}
# NB: JLKM BW approach has additional plots here:
# IPI
# Waveform of strongest click
# Wigner plot
# We are not including those here because not really useful for FKW, but if
# interested in adding back in, see:
# https://github.com/jlkeating/PAMGuard_Event_Code
cat('\n')
cat('\n')
# create median stats table for clicks with -15 dB TK noise cut off
cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with',
'SNR >= 15 dB.')
cat('\n')
cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else { # no good clicks so no summary plots/table
cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
}
###### whistle plots and table ######
cat('\n##### Whistle plots and table\n')
# if whistles present ...
if (wl$nWhistles > 0) {
# create median stats table for all whistles
# cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
# cat('\n')
# plot whistle contours
# map the needed binary files
binFiles <- dets@events[[eventUID]]@files$binaries
wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
binFiles)
wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
# load them
whBin <- loadMultiBinaries(wmFiles)
# trim to just the event time
whBinEv <- whBin[names(whBin) %in%
detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
# #plot - ggplot version/functionized
# pc <- plotContours(whBinEv)
# # print(pc)
# pc + ggtitle(eventUID)
#
# get plot limits
# xMax <- 0
# yMax <- 0
# for (wc in 1:length(names(whBinEv))){
# df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
# freq = whBinEv[[wc]]$freq/1000)
# xMaxTmp <- max(df$time)
# yMaxTmp <- max(df$freq)
# if (xMaxTmp > xMax){xMax <- xMaxTmp}
# if (yMaxTmp > yMax){yMax <- yMaxTmp}
# }
# or use standard max lims
xMax <- 1.5
yMax <- 20
# plot each line
plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)),
xlab = 'Time (s)', ylab = 'Frequency (kHz)',
main = 'Whistle Contours')
# add grid lines for frequency at 0.125 s and 5 kHz intervals
for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
col="lightgray")}
for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
col="lightgray")}
# loop through each contour
for (wc in 1:length(names(whBinEv))){
df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
freq = whBinEv[[wc]]$freq/1000)
lines(df$time, df$freq, col = rgb(0,0,0,0.4))
}
# plot histogram of median frequency
hist(wl$wh$freqMedian/1000,
breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
main = 'Histogram of whistle median frequency',
xlab = 'Median frequency (kHz)')
cat('\n')
cat('\n')
cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
# create median stats table for all whistles
cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l',
row.names = FALSE) %>%
kable_styling(bootstrap_options = c('basic', 'condensed'),
full_width = F))
} else {
cat('\nNo whistles present.\n')
}
cat('\n')
cat('\n\n --- \n\n')
cat('\n')
}
Time: 2023-04-12 05:17UTC to 2023-04-12 05:54UTC
Event contains 13334 original clicks, 1821 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1756 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 36.7 |
| Median 3dB Center Frequency [kHz] | 34.5 |
| Median 10dB Center Frequency [kHz] | 36.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (33.8 - 35.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.55 (31.8 - 40.9) |
| Median duration [μs] (25-75 percentile) | 239 (156 - 307) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 1.94 |
| Median end frequency [kHz] | 2.02 |
| Median mean frequency [kHz] (SD) | 2.17 (0.18) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.57 (1.94 - 2.51) |
Time: 2023-04-12 06:34UTC to 2023-04-12 07:30UTC
Event contains 22966 original clicks, 3249 valid clicks after filtering.
Event contains 5 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3121 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.9 |
| Median 3dB Center Frequency [kHz] | 37.2 |
| Median 10dB Center Frequency [kHz] | 39.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (36.1 - 38.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 10.7 (32.7 - 45.3) |
| Median duration [μs] (25-75 percentile) | 234 (156 - 339) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.44 |
| Median end frequency [kHz] | 11.00 |
| Median mean frequency [kHz] (SD) | 10.33 (0.67) |
| Median duration [s] | 0.278 |
| Median frequency range [kHz] (min-max) | 2.64 (9.15 - 12.32) |
Time: 2023-04-12 08:21UTC to 2023-04-12 13:21UTC
Event contains 122787 original clicks, 4179 valid clicks after filtering.
Event contains 26 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3823 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.1 |
| Median 3dB Center Frequency [kHz] | 25.5 |
| Median 10dB Center Frequency [kHz] | 25.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (24.6 - 26.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.81 ( 22 - 29.6) |
| Median duration [μs] (25-75 percentile) | 278 (172 - 434) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.11 |
| Median end frequency [kHz] | 9.02 |
| Median mean frequency [kHz] (SD) | 9.19 (0.20) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.79 (8.80 - 9.64) |
Time: 2023-04-12 13:46UTC to 2023-04-12 16:00UTC
Event contains 91841 original clicks, 13461 valid clicks after filtering.
Event contains 59 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 12886 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.9 |
| Median 3dB Center Frequency [kHz] | 37.3 |
| Median 10dB Center Frequency [kHz] | 37.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.51 (36.2 - 38.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.99 (32.6 - 42.3) |
| Median duration [μs] (25-75 percentile) | 261 (172 - 384) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.65 |
| Median end frequency [kHz] | 12.06 |
| Median mean frequency [kHz] (SD) | 11.84 (0.72) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 2.73 (10.30 - 13.38) |
Time: 2023-04-12 21:38UTC to 2023-04-12 22:40UTC
Event contains 32940 original clicks, 2202 valid clicks after filtering.
Event contains 755 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2031 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 12.4 |
| Median 10dB Center Frequency [kHz] | 12.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 (11.6 - 13.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.09 ( 8.6 - 16.3) |
| Median duration [μs] (25-75 percentile) | 183 (106 - 381) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.60 |
| Median end frequency [kHz] | 7.31 |
| Median mean frequency [kHz] (SD) | 6.73 (0.24) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 0.88 (6.25 - 7.39) |
Time: 2023-04-13 06:02UTC to 2023-04-13 07:45UTC
Event contains 30706 original clicks, 6222 valid clicks after filtering.
Event contains 16 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6128 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 22.3 |
| Median 3dB Center Frequency [kHz] | 22.3 |
| Median 10dB Center Frequency [kHz] | 22.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (21.4 - 23.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.11 ( 19 - 26.6) |
| Median duration [μs] (25-75 percentile) | 211 (139 - 328) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.29 |
| Median end frequency [kHz] | 9.64 |
| Median mean frequency [kHz] (SD) | 9.24 (0.21) |
| Median duration [s] | 0.31 |
| Median frequency range [kHz] (min-max) | 0.88 (8.89 - 9.95) |
Time: 2023-04-13 12:12UTC to 2023-04-13 14:33UTC
Event contains 107830 original clicks, 12872 valid clicks after filtering.
Event contains 537 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 12467 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 32.2 |
| Median 10dB Center Frequency [kHz] | 31.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (31.4 - 33.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.99 (28.1 - 35.5) |
| Median duration [μs] (25-75 percentile) | 289 (178 - 411) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.95 |
| Median end frequency [kHz] | 10.47 |
| Median mean frequency [kHz] (SD) | 10.10 (0.58) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 2.11 (9.07 - 11.18) |
Time: 2023-04-13 15:32UTC to 2023-04-13 16:41UTC
Event contains 43043 original clicks, 6934 valid clicks after filtering.
Event contains 174 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 6571 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.3 |
| Median 3dB Center Frequency [kHz] | 37.9 |
| Median 10dB Center Frequency [kHz] | 38.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.69 (36.7 - 39) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.61 (32.8 - 43) |
| Median duration [μs] (25-75 percentile) | 267 (172 - 386) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.87 |
| Median end frequency [kHz] | 13.07 |
| Median mean frequency [kHz] (SD) | 12.85 (0.71) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 2.38 (10.34 - 14.26) |
Time: 2023-04-13 17:33UTC to 2023-04-13 17:40UTC
Event contains 28 original clicks, 0 valid clicks after filtering.
Event contains 36 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 0 clicks) .
No clicks of sufficient SNR to plot or summarize.
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 13.33 |
| Median end frequency [kHz] | 12.59 |
| Median mean frequency [kHz] (SD) | 12.75 (0.62) |
| Median duration [s] | 0.335 |
| Median frequency range [kHz] (min-max) | 2.11 (12.32 - 13.64) |
Time: 2023-04-13 23:59UTC to 2023-04-14 00:08UTC
Event contains 2440 original clicks, 53 valid clicks after filtering.
Event contains 18 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 52 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 19.5 |
| Median 3dB Center Frequency [kHz] | 19.6 |
| Median 10dB Center Frequency [kHz] | 20.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.83 (18.4 - 20.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.24 (17.4 - 23.2) |
| Median duration [μs] (25-75 percentile) | 539 (284 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.27 |
| Median end frequency [kHz] | 11.35 |
| Median mean frequency [kHz] (SD) | 11.36 (0.06) |
| Median duration [s] | 0.247 |
| Median frequency range [kHz] (min-max) | 0.26 (11.27 - 11.44) |
Time: 2023-04-14 05:42UTC to 2023-04-14 06:57UTC
Event contains 25360 original clicks, 4925 valid clicks after filtering.
Event contains 37 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4808 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.5 |
| Median 10dB Center Frequency [kHz] | 34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 ( 33 - 34.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.94 ( 29 - 38.8) |
| Median duration [μs] (25-75 percentile) | 245 (145 - 334) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.19 |
| Median end frequency [kHz] | 11.18 |
| Median mean frequency [kHz] (SD) | 10.01 (0.84) |
| Median duration [s] | 0.295 |
| Median frequency range [kHz] (min-max) | 2.99 (7.22 - 12.50) |
Time: 2023-04-14 07:54UTC to 2023-04-14 08:51UTC
Event contains 9494 original clicks, 1488 valid clicks after filtering.
Event contains 12 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1412 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.6 |
| Median 10dB Center Frequency [kHz] | 34.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 ( 33 - 34.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.23 (29.8 - 38.8) |
| Median duration [μs] (25-75 percentile) | 197 (139 - 311) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.36 |
| Median end frequency [kHz] | 7.66 |
| Median mean frequency [kHz] (SD) | 8.13 (0.24) |
| Median duration [s] | 0.276 |
| Median frequency range [kHz] (min-max) | 0.92 (7.35 - 9.51) |
Time: 2023-04-14 10:01UTC to 2023-04-14 10:29UTC
Event contains 3219 original clicks, 311 valid clicks after filtering.
Event contains 13 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 277 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.7 |
| Median 3dB Center Frequency [kHz] | 33.2 |
| Median 10dB Center Frequency [kHz] | 32.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.02 (32.9 - 33.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.87 (29.4 - 35.6) |
| Median duration [μs] (25-75 percentile) | 206 (133 - 250) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.74 |
| Median end frequency [kHz] | 9.51 |
| Median mean frequency [kHz] (SD) | 11.29 (1.45) |
| Median duration [s] | 0.358 |
| Median frequency range [kHz] (min-max) | 5.19 (8.89 - 15.05) |
Time: 2023-04-14 12:58UTC to 2023-04-14 15:18UTC
Event contains 16576 original clicks, 1558 valid clicks after filtering.
Event contains 124 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1463 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.9 |
| Median 3dB Center Frequency [kHz] | 32.1 |
| Median 10dB Center Frequency [kHz] | 31.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (31.3 - 33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.91 (27.9 - 35.3) |
| Median duration [μs] (25-75 percentile) | 284 (161 - 406) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.71 |
| Median end frequency [kHz] | 9.81 |
| Median mean frequency [kHz] (SD) | 9.38 (0.42) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 1.50 (8.27 - 10.12) |
Time: 2023-04-14 18:50UTC to 2023-04-14 19:38UTC
Event contains 9553 original clicks, 452 valid clicks after filtering.
Event contains 890 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 405 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 28.3 |
| Median 3dB Center Frequency [kHz] | 28.8 |
| Median 10dB Center Frequency [kHz] | 28.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (28.2 - 29.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.33 (24.6 - 31.8) |
| Median duration [μs] (25-75 percentile) | 328 (195 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.91 |
| Median end frequency [kHz] | 12.50 |
| Median mean frequency [kHz] (SD) | 11.57 (0.57) |
| Median duration [s] | 0.312 |
| Median frequency range [kHz] (min-max) | 2.11 (9.87 - 13.27) |
Time: 2023-04-15 13:16UTC to 2023-04-15 14:06UTC
Event contains 6676 original clicks, 858 valid clicks after filtering.
Event contains 14 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 830 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.3 |
| Median 3dB Center Frequency [kHz] | 36.7 |
| Median 10dB Center Frequency [kHz] | 37.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (35.7 - 37.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.77 (33.2 - 41.5) |
| Median duration [μs] (25-75 percentile) | 261 (189 - 322) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 12.32 |
| Median end frequency [kHz] | 11.09 |
| Median mean frequency [kHz] (SD) | 12.61 (0.91) |
| Median duration [s] | 0.341 |
| Median frequency range [kHz] (min-max) | 2.95 (10.17 - 15.23) |
Time: 2023-04-16 09:15UTC to 2023-04-16 09:20UTC
Event contains 341 original clicks, 39 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 35 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 32.6 |
| Median 10dB Center Frequency [kHz] | 30.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (32.2 - 33.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.78 (27.3 - 34.4) |
| Median duration [μs] (25-75 percentile) | 150 (136 - 261) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.79 |
| Median end frequency [kHz] | 13.38 |
| Median mean frequency [kHz] (SD) | 13.62 (0.79) |
| Median duration [s] | 0.347 |
| Median frequency range [kHz] (min-max) | 2.82 (11.79 - 14.61) |
Time: 2023-04-16 09:43UTC to 2023-04-16 09:57UTC
Event contains 2639 original clicks, 280 valid clicks after filtering.
Event contains 8 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 267 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.1 |
| Median 3dB Center Frequency [kHz] | 33.1 |
| Median 10dB Center Frequency [kHz] | 33.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (32.7 - 33.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.53 (29.2 - 37.3) |
| Median duration [μs] (25-75 percentile) | 150 (133 - 189) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.10 |
| Median end frequency [kHz] | 11.05 |
| Median mean frequency [kHz] (SD) | 9.66 (0.30) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 1.01 (8.10 - 11.09) |
Time: 2023-04-16 12:16UTC to 2023-04-16 14:23UTC
Event contains 59611 original clicks, 8971 valid clicks after filtering.
Event contains 1161 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8777 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.9 |
| Median 3dB Center Frequency [kHz] | 32.1 |
| Median 10dB Center Frequency [kHz] | 32.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (31.4 - 32.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.17 (28.4 - 36.1) |
| Median duration [μs] (25-75 percentile) | 328 (189 - 439) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.98 |
| Median end frequency [kHz] | 10.03 |
| Median mean frequency [kHz] (SD) | 9.42 (0.48) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 1.76 (8.36 - 10.74) |
Time: 2023-04-16 14:49UTC to 2023-04-16 14:56UTC
Event contains 270 original clicks, 0 valid clicks after filtering.
Event contains 26 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 0 clicks) .
No clicks of sufficient SNR to plot or summarize.
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.35 |
| Median end frequency [kHz] | 11.53 |
| Median mean frequency [kHz] (SD) | 11.48 (0.05) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 0.18 (11.35 - 11.62) |
Time: 2023-04-17 14:27UTC to 2023-04-17 15:30UTC
Event contains 20546 original clicks, 272 valid clicks after filtering.
Event contains 143 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 172 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.17 |
| Median 3dB Center Frequency [kHz] | 9.05 |
| Median 10dB Center Frequency [kHz] | 9.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (8.22 - 9.76) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.01 ( 6.1 - 12.8) |
| Median duration [μs] (25-75 percentile) | 245 (110 - 484) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.68 |
| Median end frequency [kHz] | 10.12 |
| Median mean frequency [kHz] (SD) | 9.89 (0.15) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.70 (9.68 - 10.30) |
Time: 2023-04-17 17:10UTC to 2023-04-17 19:56UTC
Event contains 15874 original clicks, 113 valid clicks after filtering.
Event contains 552 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 84 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (9.47 - 10.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.42 (7.47 - 13.9) |
| Median duration [μs] (25-75 percentile) | 450 (265 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.45 |
| Median end frequency [kHz] | 8.54 |
| Median mean frequency [kHz] (SD) | 8.52 (0.05) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.26 (8.36 - 8.63) |
Time: 2023-04-17 21:30UTC to 2023-04-17 21:53UTC
Event contains 4135 original clicks, 17 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 15 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 5.98 |
| Median 3dB Center Frequency [kHz] | 6.36 |
| Median 10dB Center Frequency [kHz] | 5.34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.704 (5.78 - 6.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6 (2.23 - 8.31) |
| Median duration [μs] (25-75 percentile) | 411 (297 - 425) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 1.94 |
| Median end frequency [kHz] | 1.98 |
| Median mean frequency [kHz] (SD) | 2.16 (0.15) |
| Median duration [s] | 0.278 |
| Median frequency range [kHz] (min-max) | 0.44 (1.94 - 2.38) |
Time: 2023-04-18 05:48UTC to 2023-04-18 06:29UTC
Event contains 5986 original clicks, 406 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 399 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 29.1 |
| Median 3dB Center Frequency [kHz] | 29.4 |
| Median 10dB Center Frequency [kHz] | 29.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.17 (28.8 - 30.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.07 (26.5 - 32.6) |
| Median duration [μs] (25-75 percentile) | 189 (150 - 217) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.73 |
| Median end frequency [kHz] | 9.77 |
| Median mean frequency [kHz] (SD) | 8.44 (0.81) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 2.68 (6.73 - 9.81) |
Time: 2023-04-18 08:28UTC to 2023-04-18 09:30UTC
Event contains 8515 original clicks, 1549 valid clicks after filtering.
Event contains 28 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1513 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.4 |
| Median 10dB Center Frequency [kHz] | 34.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 (33.1 - 33.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.93 (28.7 - 38.8) |
| Median duration [μs] (25-75 percentile) | 228 (145 - 334) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.29 |
| Median end frequency [kHz] | 10.74 |
| Median mean frequency [kHz] (SD) | 8.72 (0.82) |
| Median duration [s] | 0.295 |
| Median frequency range [kHz] (min-max) | 2.82 (7.25 - 10.74) |
Time: 2023-04-19 12:15UTC to 2023-04-19 12:39UTC
Event contains 7323 original clicks, 888 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 872 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.7 |
| Median 3dB Center Frequency [kHz] | 38.4 |
| Median 10dB Center Frequency [kHz] | 38.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.91 (37.3 - 39.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.84 ( 33 - 42.5) |
| Median duration [μs] (25-75 percentile) | 284 (217 - 400) |
No whistles present.
Time: 2023-04-20 01:11UTC to 2023-04-20 01:55UTC
Event contains 3065 original clicks, 145 valid clicks after filtering.
Event contains 378 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 127 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.3 |
| Median 10dB Center Frequency [kHz] | 34.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.794 (32.9 - 33.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.63 ( 30 - 39.1) |
| Median duration [μs] (25-75 percentile) | 172 (120 - 247) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.35 |
| Median end frequency [kHz] | 12.63 |
| Median mean frequency [kHz] (SD) | 12.05 (0.83) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 2.73 (9.95 - 13.82) |
Time: 2023-04-20 02:37UTC to 2023-04-20 03:05UTC
Event contains 739 original clicks, 3 valid clicks after filtering.
Event contains 181 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.5 |
| Median 3dB Center Frequency [kHz] | 31.3 |
| Median 10dB Center Frequency [kHz] | 32.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.763 (30.9 - 31.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.25 (30.1 - 35.3) |
| Median duration [μs] (25-75 percentile) | 242 (146 - 338) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.44 |
| Median end frequency [kHz] | 13.20 |
| Median mean frequency [kHz] (SD) | 12.45 (0.83) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 2.73 (11.18 - 13.99) |
Time: 2023-04-20 10:16UTC to 2023-04-20 12:16UTC
Event contains 42829 original clicks, 6037 valid clicks after filtering.
Event contains 243 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5817 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.1 |
| Median 3dB Center Frequency [kHz] | 36.9 |
| Median 10dB Center Frequency [kHz] | 37.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 (35.9 - 37.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.66 (31.9 - 42.9) |
| Median duration [μs] (25-75 percentile) | 261 (161 - 378) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.71 |
| Median end frequency [kHz] | 8.80 |
| Median mean frequency [kHz] (SD) | 8.78 (0.06) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.26 (8.63 - 8.97) |
Time: 2023-04-20 22:45UTC to 2023-04-20 23:03UTC
Event contains 1041 original clicks, 225 valid clicks after filtering.
Event contains 56 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.5 |
| Median 3dB Center Frequency [kHz] | 37.5 |
| Median 10dB Center Frequency [kHz] | 39.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 3.42 ( 36 - 39.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 13.2 (33.2 - 46.8) |
| Median duration [μs] (25-75 percentile) | 317 (239 - 428) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.25 |
| Median end frequency [kHz] | 10.39 |
| Median mean frequency [kHz] (SD) | 10.34 (0.05) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.26 (10.21 - 10.52) |
Time: 2023-04-21 08:27UTC to 2023-04-21 08:57UTC
Event contains 4093 original clicks, 388 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 376 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.1 |
| Median 3dB Center Frequency [kHz] | 36.8 |
| Median 10dB Center Frequency [kHz] | 36.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (35.7 - 37.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.66 (32.7 - 41.1) |
| Median duration [μs] (25-75 percentile) | 278 (206 - 361) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.89 |
| Median end frequency [kHz] | 9.07 |
| Median mean frequency [kHz] (SD) | 9.21 (0.17) |
| Median duration [s] | 0.318 |
| Median frequency range [kHz] (min-max) | 0.88 (8.89 - 9.77) |
Time: 2023-04-21 09:28UTC to 2023-04-21 10:34UTC
Event contains 8613 original clicks, 382 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 361 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 36.7 |
| Median 3dB Center Frequency [kHz] | 36.2 |
| Median 10dB Center Frequency [kHz] | 36.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.46 (35.2 - 37.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.75 (32.9 - 40.7) |
| Median duration [μs] (25-75 percentile) | 289 (200 - 345) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.98 |
| Median end frequency [kHz] | 8.98 |
| Median mean frequency [kHz] (SD) | 9.22 (0.14) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.53 (8.89 - 9.42) |
Time: 2023-04-22 23:59UTC to 2023-04-23 00:31UTC
Event contains 1849 original clicks, 14 valid clicks after filtering.
Event contains 6 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 11 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 23.1 |
| Median 3dB Center Frequency [kHz] | 23.2 |
| Median 10dB Center Frequency [kHz] | 23.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (22.4 - 23.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.19 (18.4 - 31.3) |
| Median duration [μs] (25-75 percentile) | 195 (111 - 300) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.56 |
| Median end frequency [kHz] | 6.69 |
| Median mean frequency [kHz] (SD) | 6.68 (0.05) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.22 (6.56 - 6.78) |
Time: 2023-04-23 06:02UTC to 2023-04-23 06:19UTC
Event contains 591 original clicks, 158 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 154 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.9 |
| Median 3dB Center Frequency [kHz] | 37.8 |
| Median 10dB Center Frequency [kHz] | 38.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.08 (36.9 - 38.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 11.5 (32.8 - 43.6) |
| Median duration [μs] (25-75 percentile) | 270 (234 - 406) |
No whistles present.
Time: 2023-04-23 09:23UTC to 2023-04-23 10:05UTC
Event contains 9916 original clicks, 1871 valid clicks after filtering.
Event contains 21 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1829 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 33 |
| Median 10dB Center Frequency [kHz] | 33.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (32.5 - 33.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.77 (26.9 - 38.4) |
| Median duration [μs] (25-75 percentile) | 228 (139 - 317) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.15 |
| Median end frequency [kHz] | 9.77 |
| Median mean frequency [kHz] (SD) | 9.19 (0.74) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 2.55 (8.45 - 10.03) |
Time: 2023-04-23 14:58UTC to 2023-04-23 15:01UTC
Event contains 107 original clicks, 0 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 0 clicks) .
No clicks of sufficient SNR to plot or summarize.
No whistles present.
Time: 2023-04-23 16:39UTC to 2023-04-23 19:52UTC
Event contains 8431 original clicks, 62 valid clicks after filtering.
Event contains 6 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 35 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 12.6 |
| Median 10dB Center Frequency [kHz] | 12.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (11.8 - 13.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.03 (8.72 - 16.2) |
| Median duration [μs] (25-75 percentile) | 367 (128 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.98 |
| Median end frequency [kHz] | 9.11 |
| Median mean frequency [kHz] (SD) | 9.21 (0.17) |
| Median duration [s] | 0.27 |
| Median frequency range [kHz] (min-max) | 0.66 (8.85 - 9.55) |
Time: 2023-04-23 21:14UTC to 2023-04-23 22:48UTC
Event contains 9893 original clicks, 79 valid clicks after filtering.
Event contains 79 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 37 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.3 |
| Median 10dB Center Frequency [kHz] | 9.99 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (9.56 - 10.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.39 (6.13 - 14.2) |
| Median duration [μs] (25-75 percentile) | 400 (183 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.03 |
| Median end frequency [kHz] | 10.12 |
| Median mean frequency [kHz] (SD) | 10.09 (0.05) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.26 (9.95 - 10.30) |
Time: 2023-04-24 05:37UTC to 2023-04-24 06:25UTC
Event contains 48449 original clicks, 7603 valid clicks after filtering.
Event contains 660 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7281 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.1 |
| Median 3dB Center Frequency [kHz] | 30.9 |
| Median 10dB Center Frequency [kHz] | 30.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (30.1 - 31.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.67 (26.5 - 34.5) |
| Median duration [μs] (25-75 percentile) | 328 (200 - 456) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.02 |
| Median end frequency [kHz] | 9.86 |
| Median mean frequency [kHz] (SD) | 9.62 (0.63) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 2.29 (8.19 - 11.18) |
Time: 2023-04-25 09:53UTC to 2023-04-25 10:10UTC
Event contains 1211 original clicks, 157 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 150 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.1 |
| Median 3dB Center Frequency [kHz] | 33 |
| Median 10dB Center Frequency [kHz] | 34.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (32.5 - 33.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.78 (30.3 - 38.7) |
| Median duration [μs] (25-75 percentile) | 156 (128 - 195) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.62 |
| Median end frequency [kHz] | 10.56 |
| Median mean frequency [kHz] (SD) | 11.06 (0.59) |
| Median duration [s] | 0.256 |
| Median frequency range [kHz] (min-max) | 2.02 (10.17 - 12.15) |
Time: 2023-04-25 14:39UTC to 2023-04-25 14:53UTC
Event contains 902 original clicks, 283 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 35.5 |
| Median 3dB Center Frequency [kHz] | 35.5 |
| Median 10dB Center Frequency [kHz] | 37 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.36 (34.2 - 36.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 10.8 (32.8 - 41.2) |
| Median duration [μs] (25-75 percentile) | 222 (200 - 274) |
No whistles present.
Time: 2023-04-25 20:29UTC to 2023-04-25 20:50UTC
Event contains 1841 original clicks, 112 valid clicks after filtering.
Event contains 24 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 95 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12.4 |
| Median 3dB Center Frequency [kHz] | 12.4 |
| Median 10dB Center Frequency [kHz] | 11.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.961 ( 12 - 13) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.17 (8.55 - 15.3) |
| Median duration [μs] (25-75 percentile) | 406 (192 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.57 |
| Median end frequency [kHz] | 7.22 |
| Median mean frequency [kHz] (SD) | 7.41 (0.21) |
| Median duration [s] | 0.256 |
| Median frequency range [kHz] (min-max) | 0.75 (7.00 - 7.70) |
Time: 2023-04-26 17:25UTC to 2023-04-26 17:30UTC
Event contains 18 original clicks, 0 valid clicks after filtering.
Event contains 51 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 0 clicks) .
No clicks of sufficient SNR to plot or summarize.
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.18 |
| Median end frequency [kHz] | 11.44 |
| Median mean frequency [kHz] (SD) | 11.08 (0.28) |
| Median duration [s] | 0.312 |
| Median frequency range [kHz] (min-max) | 0.97 (10.74 - 11.62) |
Time: 2023-04-27 06:35UTC to 2023-04-27 06:46UTC
Event contains 2091 original clicks, 83 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 81 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.6 |
| Median 10dB Center Frequency [kHz] | 34.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.3 ( 34 - 35.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.34 (31.2 - 38.9) |
| Median duration [μs] (25-75 percentile) | 250 (172 - 428) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.09 |
| Median end frequency [kHz] | 11.27 |
| Median mean frequency [kHz] (SD) | 11.19 (0.09) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 0.44 (11.09 - 11.35) |
Time: 2023-04-27 11:10UTC to 2023-04-27 12:18UTC
Event contains 10430 original clicks, 1632 valid clicks after filtering.
Event contains 86 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1613 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.1 |
| Median 3dB Center Frequency [kHz] | 32.8 |
| Median 10dB Center Frequency [kHz] | 31.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (32.1 - 33.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.18 (26.3 - 37.4) |
| Median duration [μs] (25-75 percentile) | 272 (172 - 384) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.35 |
| Median end frequency [kHz] | 11.44 |
| Median mean frequency [kHz] (SD) | 11.40 (0.05) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.26 (11.27 - 11.53) |
Time: 2023-04-27 14:50UTC to 2023-04-27 15:28UTC
Event contains 3118 original clicks, 202 valid clicks after filtering.
Event contains 97 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 190 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.5 |
| Median 3dB Center Frequency [kHz] | 33.5 |
| Median 10dB Center Frequency [kHz] | 35.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (33.1 - 34) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.93 (31.4 - 40.9) |
| Median duration [μs] (25-75 percentile) | 303 (178 - 411) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.89 |
| Median end frequency [kHz] | 9.24 |
| Median mean frequency [kHz] (SD) | 9.13 (0.42) |
| Median duration [s] | 0.295 |
| Median frequency range [kHz] (min-max) | 1.32 (8.89 - 9.33) |
Time: 2023-04-28 07:04UTC to 2023-04-28 07:57UTC
Event contains 7555 original clicks, 1671 valid clicks after filtering.
Event contains 12 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1604 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 33.9 |
| Median 10dB Center Frequency [kHz] | 35 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.39 (33.2 - 34.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.33 (30.3 - 39.2) |
| Median duration [μs] (25-75 percentile) | 234 (139 - 311) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.89 |
| Median end frequency [kHz] | 9.37 |
| Median mean frequency [kHz] (SD) | 9.19 (0.20) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 0.88 (8.80 - 9.68) |
Time: 2023-04-28 12:58UTC to 2023-04-28 13:17UTC
Event contains 1427 original clicks, 78 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 66 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.17 |
| Median 3dB Center Frequency [kHz] | 8.81 |
| Median 10dB Center Frequency [kHz] | 8.97 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (8.21 - 9.56) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.25 (5.96 - 12) |
| Median duration [μs] (25-75 percentile) | 267 (133 - 449) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.15 |
| Median end frequency [kHz] | 9.59 |
| Median mean frequency [kHz] (SD) | 9.22 (0.21) |
| Median duration [s] | 0.295 |
| Median frequency range [kHz] (min-max) | 0.97 (8.89 - 9.86) |
Time: 2023-04-28 13:45UTC to 2023-04-28 18:56UTC
Event contains 171665 original clicks, 4838 valid clicks after filtering.
Event contains 152 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4227 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 23.1 |
| Median 3dB Center Frequency [kHz] | 23.3 |
| Median 10dB Center Frequency [kHz] | 23.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (22.7 - 24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.79 (18.8 - 27.2) |
| Median duration [μs] (25-75 percentile) | 289 (161 - 489) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.52 |
| Median end frequency [kHz] | 11.18 |
| Median mean frequency [kHz] (SD) | 10.66 (0.48) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 1.67 (9.11 - 12.10) |
Time: 2023-04-28 20:53UTC to 2023-04-28 22:38UTC
Event contains 30360 original clicks, 651 valid clicks after filtering.
Event contains 10 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 536 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.17 |
| Median 3dB Center Frequency [kHz] | 9.16 |
| Median 10dB Center Frequency [kHz] | 9.25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.04 (8.54 - 9.72) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.39 (5.49 - 12.6) |
| Median duration [μs] (25-75 percentile) | 359 (139 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.20 |
| Median end frequency [kHz] | 9.42 |
| Median mean frequency [kHz] (SD) | 9.26 (0.20) |
| Median duration [s] | 0.31 |
| Median frequency range [kHz] (min-max) | 0.88 (8.89 - 9.77) |
Time: 2023-04-29 04:49UTC to 2023-04-29 05:08UTC
Event contains 1099 original clicks, 29 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 21 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.97 |
| Median 3dB Center Frequency [kHz] | 9.73 |
| Median 10dB Center Frequency [kHz] | 10.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.884 (9.25 - 10.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.73 (6.84 - 13.5) |
| Median duration [μs] (25-75 percentile) | 384 (228 - 484) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 12.37 |
| Median end frequency [kHz] | 10.47 |
| Median mean frequency [kHz] (SD) | 11.26 (0.74) |
| Median duration [s] | 0.52 |
| Median frequency range [kHz] (min-max) | 2.29 (10.12 - 12.41) |
Time: 2023-04-29 05:48UTC to 2023-04-29 06:43UTC
Event contains 950 original clicks, 34 valid clicks after filtering.
Event contains 24 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 34 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 36.3 |
| Median 3dB Center Frequency [kHz] | 36 |
| Median 10dB Center Frequency [kHz] | 37.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.97 (34.2 - 36.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.59 (33.1 - 41) |
| Median duration [μs] (25-75 percentile) | 208 (161 - 261) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 12.37 |
| Median end frequency [kHz] | 11.84 |
| Median mean frequency [kHz] (SD) | 13.60 (0.73) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 2.38 (11.44 - 14.96) |
Time: 2023-04-29 11:37UTC to 2023-04-29 12:23UTC
Event contains 6497 original clicks, 332 valid clicks after filtering.
Event contains 28 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 327 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 23.1 |
| Median 3dB Center Frequency [kHz] | 23.1 |
| Median 10dB Center Frequency [kHz] | 23.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (22.2 - 24.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.56 ( 19 - 27.7) |
| Median duration [μs] (25-75 percentile) | 295 (178 - 478) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.89 |
| Median end frequency [kHz] | 8.49 |
| Median mean frequency [kHz] (SD) | 9.02 (0.35) |
| Median duration [s] | 0.293 |
| Median frequency range [kHz] (min-max) | 1.23 (8.49 - 9.42) |
Time: 2023-04-29 21:53UTC to 2023-04-29 22:20UTC
Event contains 3152 original clicks, 781 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 780 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.6 |
| Median 10dB Center Frequency [kHz] | 36.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2 (33.4 - 35.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.43 (30.8 - 40.9) |
| Median duration [μs] (25-75 percentile) | 300 (238 - 406) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.07 |
| Median end frequency [kHz] | 9.07 |
| Median mean frequency [kHz] (SD) | 9.28 (0.16) |
| Median duration [s] | 0.273 |
| Median frequency range [kHz] (min-max) | 0.62 (8.89 - 9.51) |
Time: 2023-04-30 07:34UTC to 2023-04-30 08:17UTC
Event contains 28091 original clicks, 4498 valid clicks after filtering.
Event contains 75 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4426 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.7 |
| Median 3dB Center Frequency [kHz] | 32.7 |
| Median 10dB Center Frequency [kHz] | 32.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (31.8 - 33.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.87 (28.8 - 36.8) |
| Median duration [μs] (25-75 percentile) | 300 (206 - 406) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.83 |
| Median end frequency [kHz] | 11.44 |
| Median mean frequency [kHz] (SD) | 10.47 (0.87) |
| Median duration [s] | 0.352 |
| Median frequency range [kHz] (min-max) | 2.90 (9.24 - 13.03) |
Time: 2023-04-30 11:33UTC to 2023-04-30 11:56UTC
Event contains 2736 original clicks, 20 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 13 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.9 |
| Median 10dB Center Frequency [kHz] | 36.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (34.2 - 35.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.94 (32.6 - 40) |
| Median duration [μs] (25-75 percentile) | 195 (117 - 211) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.98 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 9.19 (0.17) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.70 (8.89 - 9.59) |
Time: 2023-04-30 12:31UTC to 2023-04-30 14:20UTC
Event contains 29226 original clicks, 346 valid clicks after filtering.
Event contains 7 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 199 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 8.77 |
| Median 3dB Center Frequency [kHz] | 8.52 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.21 (7.83 - 9.47) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.87 (5.31 - 11.4) |
| Median duration [μs] (25-75 percentile) | 234 (133 - 450) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 4.84 |
| Median end frequency [kHz] | 5.28 |
| Median mean frequency [kHz] (SD) | 5.32 (0.14) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 0.44 (4.84 - 5.55) |
Time: 2023-04-30 14:38UTC to 2023-04-30 15:32UTC
Event contains 12678 original clicks, 73 valid clicks after filtering.
Event contains 9 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 52 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 11.4 |
| Median 3dB Center Frequency [kHz] | 11.5 |
| Median 10dB Center Frequency [kHz] | 11.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (10.8 - 12.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.54 ( 8.2 - 14.5) |
| Median duration [μs] (25-75 percentile) | 172 (100 - 302) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 4.14 |
| Median end frequency [kHz] | 4.75 |
| Median mean frequency [kHz] (SD) | 4.14 (0.20) |
| Median duration [s] | 0.273 |
| Median frequency range [kHz] (min-max) | 0.62 (3.52 - 4.75) |
Time: 2023-04-30 16:08UTC to 2023-04-30 19:31UTC
Event contains 104602 original clicks, 2302 valid clicks after filtering.
Event contains 20 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1831 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.57 |
| Median 3dB Center Frequency [kHz] | 9.46 |
| Median 10dB Center Frequency [kHz] | 10 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (8.61 - 10.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.23 (6.58 - 13.4) |
| Median duration [μs] (25-75 percentile) | 317 (167 - 489) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.02 |
| Median end frequency [kHz] | 9.07 |
| Median mean frequency [kHz] (SD) | 9.18 (0.16) |
| Median duration [s] | 0.293 |
| Median frequency range [kHz] (min-max) | 0.66 (8.89 - 9.59) |
Time: 2023-04-30 23:23UTC to 2023-05-01 00:02UTC
Event contains 38040 original clicks, 139 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 25 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 5.58 |
| Median 3dB Center Frequency [kHz] | 5.69 |
| Median 10dB Center Frequency [kHz] | 5.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (4.91 - 6.51) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.61 (3.08 - 8.8) |
| Median duration [μs] (25-75 percentile) | 506 (172 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.50 |
| Median end frequency [kHz] | 5.77 |
| Median mean frequency [kHz] (SD) | 5.66 (0.18) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.70 (5.41 - 6.12) |
Time: 2023-05-01 13:24UTC to 2023-05-01 13:32UTC
Event contains 1090 original clicks, 543 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 541 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 35.5 |
| Median 3dB Center Frequency [kHz] | 35.5 |
| Median 10dB Center Frequency [kHz] | 34.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.87 (34.6 - 36.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.91 (28.9 - 39.3) |
| Median duration [μs] (25-75 percentile) | 256 (150 - 334) |
No whistles present.
Time: 2023-05-01 14:02UTC to 2023-05-01 14:09UTC
Event contains 602 original clicks, 141 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 139 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 43.1 |
| Median 3dB Center Frequency [kHz] | 43.8 |
| Median 10dB Center Frequency [kHz] | 47.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.16 (43.1 - 44.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 18.1 (36.3 - 55.7) |
| Median duration [μs] (25-75 percentile) | 411 (322 - 481) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.22 |
| Median end frequency [kHz] | 7.35 |
| Median mean frequency [kHz] (SD) | 7.31 (0.14) |
| Median duration [s] | 0.233 |
| Median frequency range [kHz] (min-max) | 0.53 (7.09 - 7.61) |
Time: 2023-05-01 15:03UTC to 2023-05-01 15:10UTC
Event contains 252 original clicks, 33 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 33 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 42.3 |
| Median 3dB Center Frequency [kHz] | 42.3 |
| Median 10dB Center Frequency [kHz] | 38.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (40.4 - 43) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.16 ( 34 - 44.2) |
| Median duration [μs] (25-75 percentile) | 295 (261 - 334) |
No whistles present.
Time: 2023-05-02 04:46UTC to 2023-05-02 04:58UTC
Event contains 1080 original clicks, 76 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 76 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 35.9 |
| Median 3dB Center Frequency [kHz] | 36.1 |
| Median 10dB Center Frequency [kHz] | 38 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.27 (34.3 - 37.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.15 (31.5 - 43.2) |
| Median duration [μs] (25-75 percentile) | 297 (257 - 400) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 3.70 |
| Median end frequency [kHz] | 3.87 |
| Median mean frequency [kHz] (SD) | 3.76 (0.12) |
| Median duration [s] | 0.276 |
| Median frequency range [kHz] (min-max) | 0.57 (3.48 - 4.05) |
Time: 2023-05-02 14:12UTC to 2023-05-02 14:14UTC
Event contains 234 original clicks, 54 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 54 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 35.5 |
| Median 3dB Center Frequency [kHz] | 35.4 |
| Median 10dB Center Frequency [kHz] | 38.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.97 (34.5 - 36.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 12.7 (31.7 - 44.4) |
| Median duration [μs] (25-75 percentile) | 267 (229 - 356) |
No whistles present.
Time: 2023-05-03 06:09UTC to 2023-05-03 09:30UTC
Event contains 69404 original clicks, 5868 valid clicks after filtering.
Event contains 1348 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5762 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.1 |
| Median 3dB Center Frequency [kHz] | 33 |
| Median 10dB Center Frequency [kHz] | 32.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (32.1 - 33.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.04 ( 29 - 36.6) |
| Median duration [μs] (25-75 percentile) | 311 (189 - 445) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.56 |
| Median end frequency [kHz] | 10.39 |
| Median mean frequency [kHz] (SD) | 10.65 (0.57) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 2.02 (9.42 - 11.88) |
Time: 2023-05-03 13:34UTC to 2023-05-03 13:48UTC
Event contains 2078 original clicks, 560 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 556 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 36.3 |
| Median 3dB Center Frequency [kHz] | 36.7 |
| Median 10dB Center Frequency [kHz] | 36.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.07 (35.4 - 37.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.1 (32.2 - 40.4) |
| Median duration [μs] (25-75 percentile) | 345 (256 - 424) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.95 |
| Median end frequency [kHz] | 9.33 |
| Median mean frequency [kHz] (SD) | 9.30 (0.24) |
| Median duration [s] | 0.278 |
| Median frequency range [kHz] (min-max) | 0.97 (8.98 - 9.95) |
Time: 2023-05-04 14:41UTC to 2023-05-04 15:23UTC
Event contains 14219 original clicks, 3155 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3109 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.5 |
| Median 3dB Center Frequency [kHz] | 33.5 |
| Median 10dB Center Frequency [kHz] | 34.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.53 (32.6 - 34.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.65 (28.9 - 39.6) |
| Median duration [μs] (25-75 percentile) | 245 (161 - 345) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.33 |
| Median end frequency [kHz] | 12.41 |
| Median mean frequency [kHz] (SD) | 11.62 (1.04) |
| Median duration [s] | 0.329 |
| Median frequency range [kHz] (min-max) | 3.34 (9.15 - 12.76) |
Time: 2023-05-05 08:26UTC to 2023-05-05 08:31UTC
Event contains 248 original clicks, 106 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 106 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.1 |
| Median 3dB Center Frequency [kHz] | 36.9 |
| Median 10dB Center Frequency [kHz] | 36.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.82 (35.2 - 38.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.4 (33.6 - 39.9) |
| Median duration [μs] (25-75 percentile) | 395 (278 - 493) |
No whistles present.
Time: 2023-05-05 08:56UTC to 2023-05-05 09:51UTC
Event contains 12731 original clicks, 1360 valid clicks after filtering.
Event contains 34 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1317 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 32.2 |
| Median 10dB Center Frequency [kHz] | 32.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.22 (31.5 - 33) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.51 (29.1 - 36) |
| Median duration [μs] (25-75 percentile) | 256 (178 - 373) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 12.06 |
| Median end frequency [kHz] | 15.62 |
| Median mean frequency [kHz] (SD) | 13.37 (1.07) |
| Median duration [s] | 0.349 |
| Median frequency range [kHz] (min-max) | 3.65 (11.97 - 15.76) |
Time: 2023-05-06 05:55UTC to 2023-05-06 06:40UTC
Event contains 14963 original clicks, 1787 valid clicks after filtering.
Event contains 27 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1775 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.9 |
| Median 3dB Center Frequency [kHz] | 26.2 |
| Median 10dB Center Frequency [kHz] | 26.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (25.3 - 27.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.88 (21.9 - 31.4) |
| Median duration [μs] (25-75 percentile) | 389 (234 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.39 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 8.65 (0.43) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 1.50 (6.95 - 9.51) |
Time: 2023-05-06 09:00UTC to 2023-05-06 09:26UTC
Event contains 2480 original clicks, 55 valid clicks after filtering.
Event contains 5 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 53 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 30.7 |
| Median 3dB Center Frequency [kHz] | 30.9 |
| Median 10dB Center Frequency [kHz] | 33.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (29.9 - 31.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.02 (29.3 - 37.9) |
| Median duration [μs] (25-75 percentile) | 278 (178 - 456) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 2.90 |
| Median end frequency [kHz] | 2.73 |
| Median mean frequency [kHz] (SD) | 2.80 (0.15) |
| Median duration [s] | 0.25 |
| Median frequency range [kHz] (min-max) | 0.44 (2.64 - 2.90) |
Time: 2023-05-06 10:22UTC to 2023-05-06 12:34UTC
Event contains 47406 original clicks, 5209 valid clicks after filtering.
Event contains 341 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5113 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 34.1 |
| Median 10dB Center Frequency [kHz] | 35.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.61 (33.3 - 35) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.65 (31.1 - 39.3) |
| Median duration [μs] (25-75 percentile) | 373 (256 - 473) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.83 |
| Median end frequency [kHz] | 11.97 |
| Median mean frequency [kHz] (SD) | 11.80 (0.52) |
| Median duration [s] | 0.295 |
| Median frequency range [kHz] (min-max) | 1.94 (10.39 - 12.67) |
Time: 2023-05-06 13:06UTC to 2023-05-06 13:23UTC
Event contains 1271 original clicks, 429 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 426 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 35.9 |
| Median 3dB Center Frequency [kHz] | 35.8 |
| Median 10dB Center Frequency [kHz] | 36.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.21 (34.6 - 37.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 11.9 (30.3 - 42.4) |
| Median duration [μs] (25-75 percentile) | 314 (222 - 389) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 15.05 |
| Median end frequency [kHz] | 11.18 |
| Median mean frequency [kHz] (SD) | 12.37 (1.29) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 4.14 (10.91 - 15.05) |
Time: 2023-05-06 14:41UTC to 2023-05-06 15:25UTC
Event contains 26043 original clicks, 2105 valid clicks after filtering.
Event contains 38 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2057 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.9 |
| Median 10dB Center Frequency [kHz] | 34.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.66 (33.1 - 34.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.73 (30.1 - 38.5) |
| Median duration [μs] (25-75 percentile) | 367 (250 - 495) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.05 |
| Median end frequency [kHz] | 9.33 |
| Median mean frequency [kHz] (SD) | 8.21 (0.67) |
| Median duration [s] | 0.301 |
| Median frequency range [kHz] (min-max) | 2.42 (7.79 - 10.52) |
Time: 2023-05-07 06:26UTC to 2023-05-07 08:17UTC
Event contains 48828 original clicks, 3165 valid clicks after filtering.
Event contains 58 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3050 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 26.3 |
| Median 3dB Center Frequency [kHz] | 26 |
| Median 10dB Center Frequency [kHz] | 26 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.44 (25.2 - 26.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.87 (21.4 - 30.3) |
| Median duration [μs] (25-75 percentile) | 331 (200 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.39 |
| Median end frequency [kHz] | 9.07 |
| Median mean frequency [kHz] (SD) | 8.38 (0.28) |
| Median duration [s] | 0.276 |
| Median frequency range [kHz] (min-max) | 1.14 (7.39 - 9.51) |
Time: 2023-05-07 08:37UTC to 2023-05-07 09:32UTC
Event contains 43154 original clicks, 2427 valid clicks after filtering.
Event contains 20 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2381 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 27.9 |
| Median 3dB Center Frequency [kHz] | 28.1 |
| Median 10dB Center Frequency [kHz] | 28.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (27.3 - 28.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.45 ( 24 - 33.1) |
| Median duration [μs] (25-75 percentile) | 417 (250 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.55 |
| Median end frequency [kHz] | 7.70 |
| Median mean frequency [kHz] (SD) | 6.83 (0.29) |
| Median duration [s] | 0.304 |
| Median frequency range [kHz] (min-max) | 1.10 (5.55 - 7.83) |
Time: 2023-05-07 11:38UTC to 2023-05-07 12:16UTC
Event contains 10901 original clicks, 2113 valid clicks after filtering.
Event contains 27 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2067 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.6 |
| Median 10dB Center Frequency [kHz] | 34.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (33.8 - 35.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.98 (29.7 - 38.9) |
| Median duration [μs] (25-75 percentile) | 239 (158 - 345) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.51 |
| Median end frequency [kHz] | 11.00 |
| Median mean frequency [kHz] (SD) | 10.10 (0.51) |
| Median duration [s] | 0.335 |
| Median frequency range [kHz] (min-max) | 1.94 (9.24 - 11.53) |
Time: 2023-05-07 13:36UTC to 2023-05-07 13:51UTC
Event contains 4021 original clicks, 940 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 928 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 42.7 |
| Median 3dB Center Frequency [kHz] | 42.7 |
| Median 10dB Center Frequency [kHz] | 41.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.65 (41.8 - 43.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.67 (38.1 - 44.9) |
| Median duration [μs] (25-75 percentile) | 356 (243 - 428) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.79 |
| Median end frequency [kHz] | 11.09 |
| Median mean frequency [kHz] (SD) | 12.00 (1.23) |
| Median duration [s] | 0.281 |
| Median frequency range [kHz] (min-max) | 3.96 (9.46 - 13.99) |
Time: 2023-05-07 14:13UTC to 2023-05-07 14:15UTC
Event contains 96 original clicks, 8 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.8 |
| Median 10dB Center Frequency [kHz] | 36.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.62 (33.6 - 36) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 10.8 (31.1 - 42.2) |
| Median duration [μs] (25-75 percentile) | 411 (299 - 1000) |
No whistles present.
Time: 2023-05-07 18:58UTC to 2023-05-07 19:08UTC
Event contains 394 original clicks, 2 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 5.58 |
| Median 3dB Center Frequency [kHz] | 2.51 |
| Median 10dB Center Frequency [kHz] | 4.22 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.878 (2.07 - 2.95) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.16 (1.64 - 6.79) |
| Median duration [μs] (25-75 percentile) | 623 (1000 - 1000) |
No whistles present.
Time: 2023-05-09 04:40UTC to 2023-05-09 04:58UTC
Event contains 1147 original clicks, 3 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 0 clicks) .
No clicks of sufficient SNR to plot or summarize.
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.07 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 9.17 (0.16) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 0.70 (8.89 - 9.51) |
Time: 2023-05-09 07:50UTC to 2023-05-09 07:53UTC
Event contains 308 original clicks, 36 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 36 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 42.9 |
| Median 3dB Center Frequency [kHz] | 45.1 |
| Median 10dB Center Frequency [kHz] | 48 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.32 (44.4 - 46.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 12 ( 39 - 54.5) |
| Median duration [μs] (25-75 percentile) | 784 (1000 - 1000) |
No whistles present.
Time: 2023-05-09 11:31UTC to 2023-05-09 11:44UTC
Event contains 885 original clicks, 268 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 266 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 55.8 |
| Median 3dB Center Frequency [kHz] | 55.8 |
| Median 10dB Center Frequency [kHz] | 57.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 3.52 (54.3 - 57.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 22.5 (46.4 - 69.5) |
| Median duration [μs] (25-75 percentile) | 573 (1000 - 1000) |
No whistles present.
Time: 2023-05-10 01:17UTC to 2023-05-10 02:06UTC
Event contains 10751 original clicks, 1226 valid clicks after filtering.
Event contains 21 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1211 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 19.9 |
| Median 3dB Center Frequency [kHz] | 19.7 |
| Median 10dB Center Frequency [kHz] | 20.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.52 (18.9 - 20.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.22 (16.8 - 24) |
| Median duration [μs] (25-75 percentile) | 306 (195 - 495) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 13.11 |
| Median end frequency [kHz] | 15.84 |
| Median mean frequency [kHz] (SD) | 14.27 (0.86) |
| Median duration [s] | 0.273 |
| Median frequency range [kHz] (min-max) | 2.99 (13.11 - 15.93) |
Time: 2023-05-10 03:46UTC to 2023-05-10 04:08UTC
Event contains 1007 original clicks, 86 valid clicks after filtering.
Event contains 32 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 84 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 32.8 |
| Median 10dB Center Frequency [kHz] | 33.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (32.5 - 33.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.99 (28.7 - 38.3) |
| Median duration [μs] (25-75 percentile) | 250 (171 - 371) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.74 |
| Median end frequency [kHz] | 10.69 |
| Median mean frequency [kHz] (SD) | 10.17 (0.69) |
| Median duration [s] | 0.293 |
| Median frequency range [kHz] (min-max) | 2.46 (9.20 - 12.15) |
Time: 2023-05-10 12:15UTC to 2023-05-10 12:55UTC
Event contains 11655 original clicks, 1478 valid clicks after filtering.
Event contains 16 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1457 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.9 |
| Median 3dB Center Frequency [kHz] | 26 |
| Median 10dB Center Frequency [kHz] | 25.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (25.3 - 26.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.82 (21.7 - 29.9) |
| Median duration [μs] (25-75 percentile) | 295 (172 - 478) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.24 |
| Median end frequency [kHz] | 12.01 |
| Median mean frequency [kHz] (SD) | 10.15 (0.62) |
| Median duration [s] | 0.287 |
| Median frequency range [kHz] (min-max) | 2.20 (9.07 - 12.06) |
Time: 2023-05-10 15:52UTC to 2023-05-10 16:48UTC
Event contains 6001 original clicks, 104 valid clicks after filtering.
Event contains 6 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 85 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 11.2 |
| Median 10dB Center Frequency [kHz] | 11.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 0.983 (10.6 - 11.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.08 (8.11 - 14.7) |
| Median duration [μs] (25-75 percentile) | 222 (133 - 367) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.66 |
| Median end frequency [kHz] | 10.52 |
| Median mean frequency [kHz] (SD) | 11.08 (0.19) |
| Median duration [s] | 0.273 |
| Median frequency range [kHz] (min-max) | 0.79 (10.21 - 11.93) |
Time: 2023-05-11 00:27UTC to 2023-05-11 00:33UTC
Event contains 384 original clicks, 124 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 124 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.3 |
| Median 3dB Center Frequency [kHz] | 39.2 |
| Median 10dB Center Frequency [kHz] | 39.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 3.81 (37.1 - 40.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.83 (35.3 - 44.5) |
| Median duration [μs] (25-75 percentile) | 373 (288 - 481) |
No whistles present.
Time: 2023-05-11 02:14UTC to 2023-05-11 02:37UTC
Event contains 2098 original clicks, 8 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.1 |
| Median 3dB Center Frequency [kHz] | 24.9 |
| Median 10dB Center Frequency [kHz] | 24.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.26 (23.8 - 26.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.89 (20.1 - 29) |
| Median duration [μs] (25-75 percentile) | 300 (295 - 356) |
No whistles present.
Time: 2023-05-11 09:26UTC to 2023-05-11 10:20UTC
Event contains 4416 original clicks, 807 valid clicks after filtering.
Event contains 8 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 805 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 32 |
| Median 10dB Center Frequency [kHz] | 32.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.23 (31.2 - 32.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.58 (28.3 - 36.2) |
| Median duration [μs] (25-75 percentile) | 272 (183 - 361) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.93 |
| Median end frequency [kHz] | 9.29 |
| Median mean frequency [kHz] (SD) | 9.17 (0.17) |
| Median duration [s] | 0.264 |
| Median frequency range [kHz] (min-max) | 0.79 (8.89 - 9.64) |
Time: 2023-05-12 07:24UTC to 2023-05-12 07:53UTC
Event contains 2427 original clicks, 22 valid clicks after filtering.
Event contains 12 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 19 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 22.7 |
| Median 3dB Center Frequency [kHz] | 22.3 |
| Median 10dB Center Frequency [kHz] | 24.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.73 ( 21 - 24) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.97 (19.8 - 27.4) |
| Median duration [μs] (25-75 percentile) | 289 (170 - 336) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.38 |
| Median end frequency [kHz] | 6.47 |
| Median mean frequency [kHz] (SD) | 6.45 (0.05) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.22 (6.38 - 6.51) |
Time: 2023-05-12 15:48UTC to 2023-05-12 16:11UTC
Event contains 1247 original clicks, 14 valid clicks after filtering.
Event contains 61 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 13 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 10.8 |
| Median 3dB Center Frequency [kHz] | 10.7 |
| Median 10dB Center Frequency [kHz] | 11.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (10.3 - 11.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.54 (9.07 - 14.6) |
| Median duration [μs] (25-75 percentile) | 289 (195 - 334) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.51 |
| Median end frequency [kHz] | 6.60 |
| Median mean frequency [kHz] (SD) | 6.56 (0.05) |
| Median duration [s] | 0.256 |
| Median frequency range [kHz] (min-max) | 0.26 (6.43 - 6.60) |
Time: 2023-05-12 22:54UTC to 2023-05-13 00:05UTC
Event contains 13021 original clicks, 219 valid clicks after filtering.
Event contains 769 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 195 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 12 |
| Median 3dB Center Frequency [kHz] | 12 |
| Median 10dB Center Frequency [kHz] | 11.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.13 (11.3 - 12.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.78 (7.98 - 15.6) |
| Median duration [μs] (25-75 percentile) | 195 (106 - 403) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.78 |
| Median end frequency [kHz] | 7.22 |
| Median mean frequency [kHz] (SD) | 7.09 (0.32) |
| Median duration [s] | 0.329 |
| Median frequency range [kHz] (min-max) | 1.23 (6.25 - 7.75) |
Time: 2023-05-13 01:10UTC to 2023-05-13 03:42UTC
Event contains 35620 original clicks, 2195 valid clicks after filtering.
Event contains 1975 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1978 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 14.4 |
| Median 3dB Center Frequency [kHz] | 14.2 |
| Median 10dB Center Frequency [kHz] | 13.6 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.16 (13.5 - 14.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.17 (9.98 - 17.4) |
| Median duration [μs] (25-75 percentile) | 311 (156 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.87 |
| Median end frequency [kHz] | 8.63 |
| Median mean frequency [kHz] (SD) | 8.32 (0.32) |
| Median duration [s] | 0.347 |
| Median frequency range [kHz] (min-max) | 1.50 (6.78 - 8.71) |
Time: 2023-05-13 07:54UTC to 2023-05-13 08:37UTC
Event contains 11642 original clicks, 668 valid clicks after filtering.
Event contains 186 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 570 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.1 |
| Median 3dB Center Frequency [kHz] | 31.4 |
| Median 10dB Center Frequency [kHz] | 31.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.09 (30.7 - 32.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.14 ( 28 - 36) |
| Median duration [μs] (25-75 percentile) | 295 (145 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.54 |
| Median end frequency [kHz] | 8.67 |
| Median mean frequency [kHz] (SD) | 8.63 (0.05) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 0.26 (8.54 - 8.71) |
Time: 2023-05-13 09:11UTC to 2023-05-13 09:33UTC
Event contains 1156 original clicks, 9 valid clicks after filtering.
Event contains 38 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.3 |
| Median 3dB Center Frequency [kHz] | 25.3 |
| Median 10dB Center Frequency [kHz] | 25 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.32 (24.4 - 26.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.75 (20.4 - 29.7) |
| Median duration [μs] (25-75 percentile) | 247 (183 - 300) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.25 |
| Median end frequency [kHz] | 6.34 |
| Median mean frequency [kHz] (SD) | 6.30 (0.05) |
| Median duration [s] | 0.25 |
| Median frequency range [kHz] (min-max) | 0.26 (6.21 - 6.43) |
Time: 2023-05-13 17:15UTC to 2023-05-13 18:12UTC
Event contains 11392 original clicks, 743 valid clicks after filtering.
Event contains 345 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 677 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.6 |
| Median 3dB Center Frequency [kHz] | 13 |
| Median 10dB Center Frequency [kHz] | 13.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.11 (12.6 - 13.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.68 (9.87 - 17) |
| Median duration [μs] (25-75 percentile) | 373 (228 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.69 |
| Median end frequency [kHz] | 6.95 |
| Median mean frequency [kHz] (SD) | 6.85 (0.17) |
| Median duration [s] | 0.273 |
| Median frequency range [kHz] (min-max) | 0.63 (6.43 - 7.13) |
Time: 2023-05-13 19:28UTC to 2023-05-13 22:32UTC
Event contains 15719 original clicks, 392 valid clicks after filtering.
Event contains 2079 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 347 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.6 |
| Median 3dB Center Frequency [kHz] | 13.3 |
| Median 10dB Center Frequency [kHz] | 13.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.25 (12.6 - 14) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.7 (9.62 - 16.6) |
| Median duration [μs] (25-75 percentile) | 206 (122 - 448) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.87 |
| Median end frequency [kHz] | 7.57 |
| Median mean frequency [kHz] (SD) | 7.33 (0.21) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 0.88 (6.60 - 7.83) |
Time: 2023-05-13 23:35UTC to 2023-05-14 00:17UTC
Event contains 9405 original clicks, 799 valid clicks after filtering.
Event contains 606 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 715 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 14.8 |
| Median 3dB Center Frequency [kHz] | 14.6 |
| Median 10dB Center Frequency [kHz] | 14.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.28 (13.9 - 15.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.07 ( 11 - 18.3) |
| Median duration [μs] (25-75 percentile) | 356 (172 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.60 |
| Median end frequency [kHz] | 7.75 |
| Median mean frequency [kHz] (SD) | 7.18 (0.28) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 1.06 (6.43 - 8.01) |
Time: 2023-05-14 00:41UTC to 2023-05-14 01:52UTC
Event contains 4168 original clicks, 156 valid clicks after filtering.
Event contains 1251 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 139 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 13.6 |
| Median 3dB Center Frequency [kHz] | 13.5 |
| Median 10dB Center Frequency [kHz] | 12.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.14 (12.7 - 14.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.96 ( 8.9 - 17.1) |
| Median duration [μs] (25-75 percentile) | 206 (133 - 478) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.07 |
| Median end frequency [kHz] | 6.87 |
| Median mean frequency [kHz] (SD) | 6.53 (0.27) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 1.06 (5.81 - 7.04) |
Time: 2023-05-14 02:36UTC to 2023-05-14 03:38UTC
Event contains 9030 original clicks, 421 valid clicks after filtering.
Event contains 344 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 411 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 41.5 |
| Median 3dB Center Frequency [kHz] | 41.6 |
| Median 10dB Center Frequency [kHz] | 42.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.56 (40.6 - 42.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8 (37.3 - 46.6) |
| Median duration [μs] (25-75 percentile) | 289 (172 - 428) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.98 |
| Median end frequency [kHz] | 9.07 |
| Median mean frequency [kHz] (SD) | 9.05 (0.23) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 0.84 (8.36 - 9.24) |
Time: 2023-05-14 13:44UTC to 2023-05-14 14:32UTC
Event contains 7986 original clicks, 1113 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1066 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.1 |
| Median 3dB Center Frequency [kHz] | 33 |
| Median 10dB Center Frequency [kHz] | 33.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (31.7 - 34.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 9.53 ( 28 - 38.9) |
| Median duration [μs] (25-75 percentile) | 250 (150 - 317) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.07 |
| Median end frequency [kHz] | 6.25 |
| Median mean frequency [kHz] (SD) | 6.16 (0.30) |
| Median duration [s] | 0.312 |
| Median frequency range [kHz] (min-max) | 1.14 (6.07 - 6.25) |
Time: 2023-05-15 12:19UTC to 2023-05-15 12:34UTC
Event contains 1868 original clicks, 206 valid clicks after filtering.
Event contains 18 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 34.3 |
| Median 10dB Center Frequency [kHz] | 34 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.55 (33.3 - 35.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.7 (30.6 - 37.5) |
| Median duration [μs] (25-75 percentile) | 322 (225 - 400) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.27 |
| Median end frequency [kHz] | 11.31 |
| Median mean frequency [kHz] (SD) | 11.28 (0.05) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 0.18 (11.18 - 11.40) |
Time: 2023-05-16 08:35UTC to 2023-05-16 09:00UTC
Event contains 1527 original clicks, 61 valid clicks after filtering.
Event contains 16 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 60 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 46.7 |
| Median 3dB Center Frequency [kHz] | 46.5 |
| Median 10dB Center Frequency [kHz] | 49.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.76 (45.3 - 47.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 14.5 (41.8 - 56.6) |
| Median duration [μs] (25-75 percentile) | 445 (318 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.09 |
| Median end frequency [kHz] | 7.13 |
| Median mean frequency [kHz] (SD) | 7.13 (0.05) |
| Median duration [s] | 0.258 |
| Median frequency range [kHz] (min-max) | 0.18 (7.04 - 7.26) |
Time: 2023-05-16 10:46UTC to 2023-05-16 11:09UTC
Event contains 4432 original clicks, 1118 valid clicks after filtering.
Event contains 12 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1097 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.5 |
| Median 3dB Center Frequency [kHz] | 31.4 |
| Median 10dB Center Frequency [kHz] | 31.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.37 (30.5 - 32.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.79 (27.4 - 35.2) |
| Median duration [μs] (25-75 percentile) | 150 (122 - 234) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.74 |
| Median end frequency [kHz] | 10.91 |
| Median mean frequency [kHz] (SD) | 10.84 (0.04) |
| Median duration [s] | 0.233 |
| Median frequency range [kHz] (min-max) | 0.18 (10.74 - 10.96) |
Time: 2023-05-16 11:51UTC to 2023-05-16 11:58UTC
Event contains 766 original clicks, 72 valid clicks after filtering.
Event contains 5 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 72 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.7 |
| Median 3dB Center Frequency [kHz] | 34.9 |
| Median 10dB Center Frequency [kHz] | 34.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (34.3 - 35.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.74 ( 30 - 38.6) |
| Median duration [μs] (25-75 percentile) | 175 (122 - 357) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.35 |
| Median end frequency [kHz] | 11.53 |
| Median mean frequency [kHz] (SD) | 11.49 (0.07) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.35 (11.35 - 11.62) |
Time: 2023-05-16 14:01UTC to 2023-05-16 16:25UTC
Event contains 50203 original clicks, 7873 valid clicks after filtering.
Event contains 447 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 7650 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 34.3 |
| Median 10dB Center Frequency [kHz] | 34.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (33.3 - 35.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.09 (29.6 - 39.1) |
| Median duration [μs] (25-75 percentile) | 267 (161 - 361) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.51 |
| Median end frequency [kHz] | 10.83 |
| Median mean frequency [kHz] (SD) | 9.86 (0.82) |
| Median duration [s] | 0.307 |
| Median frequency range [kHz] (min-max) | 2.82 (8.27 - 11.35) |
Time: 2023-05-17 10:45UTC to 2023-05-17 11:20UTC
Event contains 21710 original clicks, 3281 valid clicks after filtering.
Event contains 7 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3157 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 39.9 |
| Median 3dB Center Frequency [kHz] | 40.2 |
| Median 10dB Center Frequency [kHz] | 40.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (39.1 - 41.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.69 (36.9 - 44.1) |
| Median duration [μs] (25-75 percentile) | 256 (206 - 339) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.27 |
| Median end frequency [kHz] | 16.46 |
| Median mean frequency [kHz] (SD) | 14.43 (1.16) |
| Median duration [s] | 0.329 |
| Median frequency range [kHz] (min-max) | 4.05 (11.27 - 16.46) |
Time: 2023-05-19 09:43UTC to 2023-05-19 12:03UTC
Event contains 16346 original clicks, 175 valid clicks after filtering.
Event contains 4 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 124 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.17 |
| Median 3dB Center Frequency [kHz] | 8.9 |
| Median 10dB Center Frequency [kHz] | 8.27 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.15 ( 8.2 - 9.55) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.91 (5.28 - 11.4) |
| Median duration [μs] (25-75 percentile) | 336 (178 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 4.09 |
| Median end frequency [kHz] | 4.31 |
| Median mean frequency [kHz] (SD) | 4.35 (0.12) |
| Median duration [s] | 0.304 |
| Median frequency range [kHz] (min-max) | 0.44 (4.09 - 4.66) |
Time: 2023-05-19 13:39UTC to 2023-05-19 16:54UTC
Event contains 50179 original clicks, 506 valid clicks after filtering.
Event contains 10 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 319 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 9.17 |
| Median 3dB Center Frequency [kHz] | 9.35 |
| Median 10dB Center Frequency [kHz] | 9.45 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.24 (8.62 - 9.98) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.1 ( 6.2 - 12.6) |
| Median duration [μs] (25-75 percentile) | 272 (111 - 459) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.02 |
| Median end frequency [kHz] | 8.10 |
| Median mean frequency [kHz] (SD) | 8.91 (0.19) |
| Median duration [s] | 0.315 |
| Median frequency range [kHz] (min-max) | 0.75 (7.88 - 9.42) |
Time: 2023-05-19 20:50UTC to 2023-05-19 21:10UTC
Event contains 724 original clicks, 5 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 7.98 |
| Median 3dB Center Frequency [kHz] | 8.04 |
| Median 10dB Center Frequency [kHz] | 7.69 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.27 (7.62 - 8.67) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 5.74 (5.08 - 10.3) |
| Median duration [μs] (25-75 percentile) | 517 (484 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.02 |
| Median end frequency [kHz] | 9.02 |
| Median mean frequency [kHz] (SD) | 9.20 (0.18) |
| Median duration [s] | 0.227 |
| Median frequency range [kHz] (min-max) | 0.66 (8.93 - 9.59) |
Time: 2023-05-23 06:24UTC to 2023-05-23 07:43UTC
Event contains 13660 original clicks, 870 valid clicks after filtering.
Event contains 11 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 847 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 25.5 |
| Median 3dB Center Frequency [kHz] | 25.6 |
| Median 10dB Center Frequency [kHz] | 25.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.41 (24.8 - 26.3) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.08 (21.4 - 29.6) |
| Median duration [μs] (25-75 percentile) | 317 (189 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.60 |
| Median end frequency [kHz] | 6.78 |
| Median mean frequency [kHz] (SD) | 6.98 (0.16) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 0.70 (6.60 - 7.48) |
Time: 2023-05-23 17:28UTC to 2023-05-23 17:51UTC
Event contains 750 original clicks, 80 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 78 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.5 |
| Median 3dB Center Frequency [kHz] | 37.7 |
| Median 10dB Center Frequency [kHz] | 38.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 2.08 (36.2 - 38.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.36 (35.5 - 41.7) |
| Median duration [μs] (25-75 percentile) | 300 (224 - 353) |
No whistles present.
Time: 2023-05-24 04:01UTC to 2023-05-24 05:18UTC
Event contains 19821 original clicks, 1225 valid clicks after filtering.
Event contains 84 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1191 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.7 |
| Median 3dB Center Frequency [kHz] | 31.8 |
| Median 10dB Center Frequency [kHz] | 32.3 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.49 (30.7 - 33.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.98 (27.4 - 36.5) |
| Median duration [μs] (25-75 percentile) | 350 (220 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.85 |
| Median end frequency [kHz] | 5.50 |
| Median mean frequency [kHz] (SD) | 5.66 (0.31) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 1.14 (5.33 - 6.25) |
Time: 2023-05-26 08:45UTC to 2023-05-26 09:52UTC
Event contains 16705 original clicks, 1490 valid clicks after filtering.
Event contains 213 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1465 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 32.5 |
| Median 10dB Center Frequency [kHz] | 33.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.5 (31.6 - 33.4) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.02 (28.9 - 36.9) |
| Median duration [μs] (25-75 percentile) | 295 (183 - 428) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.00 |
| Median end frequency [kHz] | 10.47 |
| Median mean frequency [kHz] (SD) | 11.32 (0.57) |
| Median duration [s] | 0.284 |
| Median frequency range [kHz] (min-max) | 2.20 (9.95 - 12.59) |
Time: 2023-05-26 21:46UTC to 2023-05-26 22:09UTC
Event contains 1612 original clicks, 9 valid clicks after filtering.
Event contains 2 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 8 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.1 |
| Median 3dB Center Frequency [kHz] | 32 |
| Median 10dB Center Frequency [kHz] | 32.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.33 (31.3 - 32.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.82 (29.3 - 36.1) |
| Median duration [μs] (25-75 percentile) | 342 (239 - 474) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.99 |
| Median end frequency [kHz] | 6.12 |
| Median mean frequency [kHz] (SD) | 6.11 (0.04) |
| Median duration [s] | 0.256 |
| Median frequency range [kHz] (min-max) | 0.26 (5.99 - 6.25) |
Time: 2023-05-27 13:19UTC to 2023-05-27 13:48UTC
Event contains 10662 original clicks, 339 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 332 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 24.7 |
| Median 3dB Center Frequency [kHz] | 24.5 |
| Median 10dB Center Frequency [kHz] | 23.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.47 (23.6 - 25.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.28 ( 20 - 27.9) |
| Median duration [μs] (25-75 percentile) | 214 (133 - 300) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 1.94 |
| Median end frequency [kHz] | 2.02 |
| Median mean frequency [kHz] (SD) | 2.08 (0.11) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 0.44 (1.94 - 2.38) |
Time: 2023-05-28 12:20UTC to 2023-05-28 14:20UTC
Event contains 26944 original clicks, 1257 valid clicks after filtering.
Event contains 181 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1203 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 28.7 |
| Median 3dB Center Frequency [kHz] | 28.9 |
| Median 10dB Center Frequency [kHz] | 28.7 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.42 ( 28 - 29.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.19 (24.2 - 32.9) |
| Median duration [μs] (25-75 percentile) | 295 (172 - 473) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.81 |
| Median end frequency [kHz] | 8.71 |
| Median mean frequency [kHz] (SD) | 7.34 (0.87) |
| Median duration [s] | 0.301 |
| Median frequency range [kHz] (min-max) | 3.17 (5.46 - 9.24) |
Time: 2023-05-29 01:47UTC to 2023-05-29 02:12UTC
Event contains 1178 original clicks, 36 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 28 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 16.4 |
| Median 3dB Center Frequency [kHz] | 16.2 |
| Median 10dB Center Frequency [kHz] | 16 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.01 (15.5 - 16.8) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.43 (12.6 - 19.2) |
| Median duration [μs] (25-75 percentile) | 284 (154 - 391) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.80 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 9.15 (0.23) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 0.88 (8.80 - 9.68) |
Time: 2023-05-29 03:26UTC to 2023-05-29 03:45UTC
Event contains 1060 original clicks, 28 valid clicks after filtering.
Event contains 0 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 27 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 39.1 |
| Median 3dB Center Frequency [kHz] | 27.9 |
| Median 10dB Center Frequency [kHz] | 29 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.2 (27.4 - 28.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.07 (25.8 - 32.1) |
| Median duration [μs] (25-75 percentile) | 167 (142 - 247) |
No whistles present.
Time: 2023-05-29 10:33UTC to 2023-05-29 11:43UTC
Event contains 6101 original clicks, 176 valid clicks after filtering.
Event contains 5 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 175 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.7 |
| Median 3dB Center Frequency [kHz] | 38.4 |
| Median 10dB Center Frequency [kHz] | 39 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.62 (37.4 - 39.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.29 (33.9 - 42.9) |
| Median duration [μs] (25-75 percentile) | 284 (222 - 406) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.19 |
| Median end frequency [kHz] | 5.28 |
| Median mean frequency [kHz] (SD) | 5.38 (0.09) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.35 (5.19 - 5.55) |
Time: 2023-05-30 09:02UTC to 2023-05-30 09:28UTC
Event contains 4937 original clicks, 586 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 584 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.9 |
| Median 3dB Center Frequency [kHz] | 33.8 |
| Median 10dB Center Frequency [kHz] | 34.4 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.63 ( 33 - 34.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.42 (30.3 - 38.1) |
| Median duration [μs] (25-75 percentile) | 306 (222 - 395) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 4.93 |
| Median end frequency [kHz] | 5.28 |
| Median mean frequency [kHz] (SD) | 5.32 (0.15) |
| Median duration [s] | 0.239 |
| Median frequency range [kHz] (min-max) | 0.79 (4.93 - 5.72) |
Time: 2023-05-30 14:51UTC to 2023-05-30 15:39UTC
Event contains 7439 original clicks, 119 valid clicks after filtering.
Event contains 7 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 116 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 38.3 |
| Median 3dB Center Frequency [kHz] | 37.9 |
| Median 10dB Center Frequency [kHz] | 36.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (37.2 - 38.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.23 (33.5 - 40.5) |
| Median duration [μs] (25-75 percentile) | 347 (239 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 2.02 |
| Median end frequency [kHz] | 2.29 |
| Median mean frequency [kHz] (SD) | 2.23 (0.14) |
| Median duration [s] | 0.256 |
| Median frequency range [kHz] (min-max) | 0.44 (1.94 - 2.46) |
Time: 2023-05-31 05:41UTC to 2023-05-31 05:47UTC
Event contains 376 original clicks, 30 valid clicks after filtering.
Event contains 1 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 30 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 34.3 |
| Median 3dB Center Frequency [kHz] | 34.1 |
| Median 10dB Center Frequency [kHz] | 35.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.73 (33.1 - 35.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.52 (31.8 - 39.8) |
| Median duration [μs] (25-75 percentile) | 309 (224 - 371) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.33 |
| Median end frequency [kHz] | 9.24 |
| Median mean frequency [kHz] (SD) | 9.22 (0.15) |
| Median duration [s] | 0.261 |
| Median frequency range [kHz] (min-max) | 0.70 (8.89 - 9.59) |
Time: 2023-06-02 05:03UTC to 2023-06-02 07:40UTC
Event contains 28055 original clicks, 1626 valid clicks after filtering.
Event contains 37 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1591 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 31.9 |
| Median 3dB Center Frequency [kHz] | 31.5 |
| Median 10dB Center Frequency [kHz] | 31.9 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.54 (30.6 - 32.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 8.15 (26.9 - 36.6) |
| Median duration [μs] (25-75 percentile) | 384 (217 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 8.89 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 9.16 (0.25) |
| Median duration [s] | 0.278 |
| Median frequency range [kHz] (min-max) | 0.97 (8.80 - 9.59) |
Time: 2023-06-02 09:14UTC to 2023-06-02 09:54UTC
Event contains 9627 original clicks, 921 valid clicks after filtering.
Event contains 13 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 911 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 30.3 |
| Median 3dB Center Frequency [kHz] | 30.1 |
| Median 10dB Center Frequency [kHz] | 30 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.43 ( 29 - 30.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.69 (25.2 - 34.2) |
| Median duration [μs] (25-75 percentile) | 267 (150 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 7.83 |
| Median end frequency [kHz] | 9.15 |
| Median mean frequency [kHz] (SD) | 9.10 (0.24) |
| Median duration [s] | 0.318 |
| Median frequency range [kHz] (min-max) | 0.70 (7.83 - 9.51) |
Time: 2023-06-03 10:49UTC to 2023-06-03 11:10UTC
Event contains 1302 original clicks, 253 valid clicks after filtering.
Event contains 3 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 252 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.9 |
| Median 3dB Center Frequency [kHz] | 37.8 |
| Median 10dB Center Frequency [kHz] | 36 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (36.8 - 38.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 10.4 (30.1 - 41.2) |
| Median duration [μs] (25-75 percentile) | 317 (239 - 385) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 9.68 |
| Median end frequency [kHz] | 9.86 |
| Median mean frequency [kHz] (SD) | 9.89 (0.21) |
| Median duration [s] | 0.29 |
| Median frequency range [kHz] (min-max) | 0.97 (9.59 - 10.12) |
Time: 2023-06-03 11:46UTC to 2023-06-03 12:01UTC
Event contains 1230 original clicks, 211 valid clicks after filtering.
Event contains 11 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 33.1 |
| Median 3dB Center Frequency [kHz] | 33.4 |
| Median 10dB Center Frequency [kHz] | 33.2 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.71 (31.9 - 34.6) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.35 (29.8 - 36.4) |
| Median duration [μs] (25-75 percentile) | 311 (228 - 406) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.83 |
| Median end frequency [kHz] | 11.00 |
| Median mean frequency [kHz] (SD) | 10.95 (0.04) |
| Median duration [s] | 0.244 |
| Median frequency range [kHz] (min-max) | 0.18 (10.83 - 11.00) |
Time: 2023-06-03 13:11UTC to 2023-06-03 13:25UTC
Event contains 542 original clicks, 45 valid clicks after filtering.
Event contains 69 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 45 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 37.5 |
| Median 3dB Center Frequency [kHz] | 37.5 |
| Median 10dB Center Frequency [kHz] | 36.8 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.99 (36.4 - 38.5) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.72 (33.5 - 40.1) |
| Median duration [μs] (25-75 percentile) | 461 (278 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.27 |
| Median end frequency [kHz] | 11.35 |
| Median mean frequency [kHz] (SD) | 11.36 (0.05) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 0.18 (11.27 - 11.44) |
Time: 2023-06-04 07:02UTC to 2023-06-04 07:41UTC
Event contains 19360 original clicks, 2673 valid clicks after filtering.
Event contains 41 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2589 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 40.3 |
| Median 3dB Center Frequency [kHz] | 40.6 |
| Median 10dB Center Frequency [kHz] | 40.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.84 (39.3 - 41.9) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.98 (35.5 - 45) |
| Median duration [μs] (25-75 percentile) | 261 (195 - 373) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 11.27 |
| Median end frequency [kHz] | 11.44 |
| Median mean frequency [kHz] (SD) | 11.41 (0.06) |
| Median duration [s] | 0.25 |
| Median frequency range [kHz] (min-max) | 0.26 (11.27 - 11.53) |
Time: 2023-06-04 09:26UTC to 2023-06-04 10:28UTC
Event contains 11951 original clicks, 559 valid clicks after filtering.
Event contains 11 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 532 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 32.3 |
| Median 3dB Center Frequency [kHz] | 31.5 |
| Median 10dB Center Frequency [kHz] | 32.1 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.38 (30.4 - 32.2) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.66 (28.1 - 35.9) |
| Median duration [μs] (25-75 percentile) | 345 (222 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 5.81 |
| Median end frequency [kHz] | 6.51 |
| Median mean frequency [kHz] (SD) | 6.51 (0.17) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 0.79 (5.72 - 6.60) |
Time: 2023-06-04 12:26UTC to 2023-06-04 12:50UTC
Event contains 7313 original clicks, 1303 valid clicks after filtering.
Event contains 13 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1287 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 29.9 |
| Median 3dB Center Frequency [kHz] | 29.5 |
| Median 10dB Center Frequency [kHz] | 30.5 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.48 (29.2 - 30.1) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 6.91 (26.6 - 35.3) |
| Median duration [μs] (25-75 percentile) | 261 (172 - 350) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 10.74 |
| Median end frequency [kHz] | 10.91 |
| Median mean frequency [kHz] (SD) | 10.86 (0.06) |
| Median duration [s] | 0.25 |
| Median frequency range [kHz] (min-max) | 0.26 (10.74 - 10.91) |
Time: 2023-06-05 08:47UTC to 2023-06-05 10:05UTC
Event contains 42346 original clicks, 3588 valid clicks after filtering.
Event contains 49 whistles.
SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3477 clicks) .
| parameter | value |
|---|---|
| Median Peak Frequency [kHz] | 30.3 |
| Median 3dB Center Frequency [kHz] | 29.9 |
| Median 10dB Center Frequency [kHz] | 30 |
| Median 3dB Bandwidth [kHz] (lower-upper) | 1.4 (29.1 - 30.7) |
| Median 10dB Bandwidth [kHz] (lower-upper) | 7.3 (26.1 - 33.7) |
| Median duration [μs] (25-75 percentile) | 322 (189 - 1000) |
| parameter | value |
|---|---|
| Median begin frequency [kHz] | 6.95 |
| Median end frequency [kHz] | 8.01 |
| Median mean frequency [kHz] (SD) | 7.65 (0.39) |
| Median duration [s] | 0.267 |
| Median frequency range [kHz] (min-max) | 1.41 (6.95 - 8.80) |